- /* sndestrc.cpp by K.Tsuru */
- // function ID 112
- /*************
- SNumber class
- destructor
- **************/
- #ifndef SN_H
- #include "sn.h"
- #endif
-
- SNumber::~SNumber(){
- #ifndef NDEBUG
- if( aHead < aTail) SetError(FATAL, "SN destructor", 112);
- if( figure.size() ){
- if( (sign && !figure(aHead)) || (!sign && figure(aHead)) ) SetError(FATAL, "sign", 112);
- if(sign != UNDECIDED) CheckArray(112);
- }
- assert(aHead >= aTail);
- #endif
- // Restore cutDownTable[].
- if(pushCD & PUSH) CutDown(POP);
- objectCounter--;
- }
sndestrc.cpp : last modifiled at 2017/06/18 14:27:53(526 bytes)
created at 2016/04/11 11:36:47
The creation time of this html file is 2017/10/27 10:59:17 (Fri Oct 27 10:59:17 2017).